home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / PowerPlant / PP Balloon Help Support / CBalloonApp.h < prev    next >
Encoding:
Text File  |  1996-08-04  |  461 b   |  26 lines  |  [TEXT/CWIE]

  1. // Header for CBalloonApp class
  2.  
  3. #pragma once
  4.  
  5. #include <LDocApplication.h>
  6.  
  7. // Classes
  8.  
  9. class    LPane;
  10.  
  11. class    CBalloonApp : public LDocApplication {
  12.  
  13. // Methods
  14. public:
  15.                     CBalloonApp();
  16.     virtual         ~CBalloonApp();
  17.  
  18. protected:
  19.     virtual void    AdjustCursor(const EventRecord &inMacEvent);    // OVERRIDE
  20.  
  21. private:
  22.     virtual LPane*    GetPaneUnderMouse(LPane*    inPane,
  23.                                         Int32    inHorizPort,
  24.                                         Int32    inVertPort);    // Find the pane currently under the mouse
  25. };
  26.